-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdifftime.c
55 lines (39 loc) · 1.24 KB
/
difftime.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*++
toro C Library
https://github.com/KilianKegel/toro-C-Library#toro-c-library-formerly-known-as-torito-c-library
Copyright (c) 2017-2025, Kilian Kegel. All rights reserved.
SPDX-License-Identifier: GNU General Public License v3.0
Module Name:
difftime.c
Abstract:
Implementation of the Standard C function.
Finds the difference between two times.
Author:
Kilian Kegel
--*/
#define difftime msft_difftime/*rename original difftime() to establish my own difftime()*/
#include <time.h>
#undef difftime
/** difftime() -- difference between two calendar times
Synopsis
#include <time.h>
double difftime(time_t time1, time_t time0);
Description
https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/difftime-difftime32-difftime64?view=msvc-160
The difftime function computes the difference between two calendar times:
time1 - time0.
Returns
The difftime function returns the difference expressed in seconds as a
double.
@param[in] time_t time1
@param[in] time_t time0
@retval double, time difference
**/
double _difftime64(time_t time1, time_t time0)
{
return (double)(time1 - time0);
}
double difftime(time_t time1, time_t time0)
{
return _difftime64(time1, time0);
}